home *** CD-ROM | disk | FTP | other *** search
/ Stone Design / Stone Design.iso / Stone_Friends / Wave / WavesWorld / Source / IBPalettes / WW3DKit / RIBParaboloid.h < prev    next >
Encoding:
Text File  |  1995-03-22  |  695 b   |  28 lines

  1. // copyright 1993 Michael B. Johnson; some portions copyright 1994, MIT
  2. // see COPYRIGHT for reuse legalities
  3. //
  4.  
  5. #import <appkit/appkit.h>
  6.  
  7. #import "RIBQuadric.h"
  8.  
  9.  
  10. @interface RIBParaboloid : RIBQuadric
  11. {
  12.   RtFloat rMax, zMin, zMax;
  13. }
  14.  
  15. - setRMax:(RtFloat)newRMax 
  16.      zMin:(RtFloat)newZMin zMax:(RtFloat)newZMax 
  17.      thetaMax:(RtFloat)newThetaMax
  18.      n:(int)newN tokens:(RtToken *)newTokens parms:(RtPointer *)newParms archiveVector:(char **)newArchiveVector
  19.      printfTypeVector:(int *)newPrintfTypeVector printfNVector:(int *)newPrintfNVector;
  20. - setRMax:(RtFloat)newRMax;
  21. - setZMin:(RtFloat)newZMin;
  22. - setZMax:(RtFloat)newZMax;
  23. - (RtFloat)rMax; 
  24. - (RtFloat)zMin; 
  25. - (RtFloat)zMax; 
  26.  
  27. @end
  28.